Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
| 1234567891011121314 |
- 'use client'
- import React from 'react'
- import ChatWithHistoryWrap from '@/app/components/base/chat/chat-with-history'
- import AuthenticatedLayout from '../../components/authenticated-layout'
-
- const Chat = () => {
- return (
- <AuthenticatedLayout>
- <ChatWithHistoryWrap />
- </AuthenticatedLayout>
- )
- }
-
- export default React.memo(Chat)
|